home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / snz128s / src / screen.h < prev    next >
C/C++ Source or Header  |  1994-04-13  |  697b  |  22 lines

  1. /*
  2.  * $Id: SCREEN.H,v 1.2 1994/02/05 18:45:50 gbj Exp user $
  3.  */
  4.  
  5. /**************************************************************************
  6. *   01 Jun 93   1.1    MSM  Header added                                  *
  7. *                           Snews 2.0                                     *
  8. ***************************************************************************/
  9.  
  10. void v_init(int);               /* initialise Bios video package */
  11.  
  12. extern unsigned char scr_rows;
  13. extern unsigned char scr_cols;
  14.  
  15. void textbackground(int newcolour);
  16. void textcolor(int newcolour);
  17. void clreol(void);
  18. void clrscr(void);
  19. void gotoxy(int x, int y);
  20. void delline(void);
  21. void insline(void);
  22.